Welcome![Sign In][Sign Up]
Location:
Search - list Vc

Search list

[SourceCodeClassList

Description: vc++应用范例5-vc++ Application Example 5
Platform: | Size: 24576 | Author: | Hits:

[Otherscrl

Description: This dialog-based application shows how to use the CListCtrl::Scroll() member. It subclasses a list view control which is in report mode, and forces the control to "snap" its horizontal scrolling to the exact start of each column. The code shows how to retrieve the count of columns in the control, and also demonstrates how to find information about each column. This is a VC++ 5.0 project. Differences from a stock AppWizard dialog-based application are marked with //SAMPLE comments.
Platform: | Size: 13312 | Author: 陈伟 | Hits:

[Othercoollistview

Description: 在VC中使用coollistview类-in VC coollistview use category
Platform: | Size: 28672 | Author: 前景 | Hits:

[ListView/ListBoxvc++列表项的提示条

Description: vc++列表项的提示条-vc indicative list of items
Platform: | Size: 41984 | Author: | Hits:

[GUI Developvc界面

Description: 我们经常会使用到组合框,而组合框是是有2种功能的--下拉和列表。一般情况下,列表框的宽度和选择框是一样宽的,但是我们有些时候确实很需要把列表框的宽度变大,一便让我们能更好的看我们要选的东西。   为了能有这个功能,我写了下面的这个函数。首先得在你的对话框中添加一个的WM_CTLCOLOR的消息句柄,或者使用CComboBox的继承类,而且在其中添加下面的代码:-we often use to mix frame, and frames are combinations are two kinds of functions-- and the drop-down list. Under normal circumstances, the list box and the width of the selection box is the same width, but sometimes we need to do is list the width of the frame, one will enable us to better do our election of the things. To have this function, I wrote the following this function. First of all in your dialog box to add one of the news WM_CTLCOLOR handle, or use the inheritance CComboBox category, but which add the following code :
Platform: | Size: 7168 | Author: 政策 | Hits:

[Othersortlist1

Description: 对control list控件实现自动排序功能,转载自vckbase-right control list controls automatic sequencing feature reprinted from vckbase
Platform: | Size: 12288 | Author: ERIC | Hits:

[GUI DevelopVC++精品源码打包下载1

Description: 内容有:模仿Outlook建立分类列表框 一个简单的数字时钟程序 可以实现在快速字符串搜索 通过单击列表来改变显示分辨率 创建一个按钮,并在上面显示图标 VC中显示JPG图片,不使用动态连接库 一个邮件报告程序 在VC中实现Undo和Redo功能 自定义的标签控件对话框-contents are : Outlook imitate established classification list frame of a simple digital clock procedures can be achieved in the fast string search by clicking the list to change the display resolution to create a button, and above show icon VC show JPG images, the non-use of a dynamic link library mail reporting procedures in VC to achieve Undo and Redo function-defined labels dialog box controls
Platform: | Size: 1048576 | Author: 大灰熊 | Hits:

[ListView/ListBoxCListCtrl使用演示

Description: 使用List控件的实例,对初次学习VC控件的同学是不错的实例!-example, the initial learning Control VC students is a good example!
Platform: | Size: 3507200 | Author: 李洪 | Hits:

[Windows Develop鼠标取词vc代码

Description: 现在的即时翻译软件种类很多,使用方法也各有千秋,但它们大都有一个 共同的特点:鼠标指到哪儿,就翻译它下面的单词。这大大地方便了用户,但是 从一个编程人员的角度来看就不那么轻松了。因为没有一个方便的函数 类似”GetWordUnderMouse()”可以得到鼠标下面的单词,那么这些软件是怎么 做的呢?经常在BBS和mailing list里看到和我同样困惑的问着相同问题的网友们。-Now in the matket the immediatly translation software has many sorts.The method of using is also differently.But they have a feature in common:it translate the word when the mouse pointer points a word.This founction make things conwenient for the consumer,but through the angle of a programmer it is not so easyly.In the reason of not having a conveniet founction just as "GetWordUnderMouse()"that can get the word undermouse,then how did these software product?I ofen encoutered the web funs who had the same question as me in the BBS or maling list.
Platform: | Size: 71680 | Author: | Hits:

[VC/MFCVC知道库精华 B4

Description: vc只是精华库,不错的东东哦!刚才上载来的第一册。现在是第4册。总共五册。-vc only for the essence, a good Dongdong Oh! Just uploaded to the first list. Now is the first four. A total of five.
Platform: | Size: 882688 | Author: 李晓东 | Hits:

[Data structs用VC编写单链表(数据结构)

Description: 用VC编写的单链表 是数据结构中线性表中的一种-VC prepared by the single-linked list data structure is linear form of a
Platform: | Size: 872448 | Author: 代价 | Hits:

[Data structshaffmancode(VC)

Description: ---- Huffman 算法的不同实现 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用Canonical Huffman编码,同时对huffman_b的存储结构进行改造,将二叉树存放在连续空间tree里,空间的每个结点类型都和结点权值的数据类型相同,空间大小为2*num,tree[0]未用,tree[1..num]是每个元素的权值,生成Huffman后,tree[1..2*num-1]中是双亲结点索引。 * huffman_d 在huffman_c的基础上,增加预先排序的功能先用QuickSort算法对所有元素的权值从小到大排序,这样,排序后最前面的两个元素就是最小的一对元素了。我们可以直接将它们挑出来,组合成一个子树。然后再子树的权值用折半插入法插到已排序的元素表中, 保证所有结点有序。为了保证初始元素的顺序不变,我们另外使用了一个索引数组,所有排序中的交换操作都是在索引数组中进行的----- Huffman algorithm to achieve Catalog under different procedures used eight different ways to achieve a Huffman coding algorithm, eight models were used huffman_a* Chain Structure Generation Huffman tree algorithm, This is the most basic method, the minimum efficiency.* Huffman_b use of "data structure" (Yan Wei Min, Xiulan WU Weimin, 1997, C language version) is the algorithm stored in a binary tree will be continuous space (static List), the space within each node still left subtree, right subtrees, parents and other indicators.* Canonical huffman_c use Huffman coding, while huffman_b storage structure transformation, will be stored in a binary tree continuous space tree, space each node type and the right node value of the same data type, size space for two* num, tree
Platform: | Size: 32768 | Author: ray | Hits:

[Symbianshoppinglist-vc

Description: Symbian 的购物程序 shoppinglist-vc-Symbian shopping procedures shoppinglist- vc
Platform: | Size: 15360 | Author: lockey | Hits:

[VC/MFCvc++shuxinglie

Description: Property Listbox 属性列表框 -Property SQLs attribute box is SQLs Property Xing box
Platform: | Size: 1024 | Author: yang | Hits:

[Data structslinelist

Description: 数据结构中线性表的合并链式实现,VC++实现的。-Data structure in linear chain realize the merger table, VC++ Achievable.
Platform: | Size: 232448 | Author: 张敏 | Hits:

[GUI DevelopVC++GUI

Description: 关于VC界面设计的高级范例,其中涉及了不少当前流行的界面编程,比如像Outlook的动态视图切换-VC interface design on high-level paradigm, which involves a lot of current popular programming interface, such as Outlook dynamic view switching
Platform: | Size: 6526976 | Author: 231213 | Hits:

[Consolelink-list-vc++

Description: this is a implementation of a simply and doubly linked list. have a inclusion, deletion, sorting, etc procedures
Platform: | Size: 165888 | Author: romulo lima | Hits:

[ComboBoxlist

Description: vc++下LIST控件以ICON显示状态时,对位图的装载和显示-vc++ next to ICON LIST control display state, on the loading and display bitmap
Platform: | Size: 1074176 | Author: goosw | Hits:

[Windows DevelopVC.plug.in.module.development.array.list

Description: VC设计数组列表插入模块开发VC plug-in module design development array list -VC plug-in module design development array list
Platform: | Size: 18432 | Author: bx | Hits:

[Windows Developsort.array.comprehensive.list.VC

Description: VC编程综合排序数组列表经典代码Programming sort the array of comprehensive list of VC classic code -Programming sort the array of comprehensive list of VC classic code
Platform: | Size: 19456 | Author: bx | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net